home *** CD-ROM | disk | FTP | other *** search
/ System Booster / System Booster.iso / Commodities / AltKeyQ / DMakefile < prev    next >
Makefile  |  1996-09-26  |  816b  |  36 lines

  1. # $VER: DMakefile_for_AltKeyQ 1.0 (16.9.92)
  2. # (c)1992 by Dieter Temme
  3.  
  4. # compilation with DICE (registered version!)
  5. #COMP= dcc -c -ms -proto
  6. #LINK= dcc
  7. #LLIB=
  8.  
  9. # compilation with Aztec-C (5.2a)
  10. COMP= cc -ms -pp -so -wcn
  11. LINK= ln
  12. LLIB= +l CLIB:amiga.lib +l -lc
  13. # compilation with Aztec-C for SDB
  14. #COMP= cc -ms -pp -wcn -bs -dDEBUG
  15. #LINK= ln -g
  16.  
  17. AltKeyQ: RAM:AltKeyQ.o
  18.     $(LINK) -o AltKeyQ %(right) $(LLIB)
  19.  
  20. RAM:AltKeyQ.o: AltKeyQ.c AltKeyQ.h
  21.     $(COMP) AltKeyQ.c -o %(left)
  22.  
  23. AltKeyQ.h: AltKeyQ.cd
  24.     CatComp %(right) CFILE %(left)
  25.  
  26. empty.ct: AltKeyQ.cd
  27.     CatComp %(right) CTFILE %(left)
  28.  
  29. catalogs/deutsch/AltKeyQ.catalog: AltKeyQ.cd deutsch.ct
  30.     CatComp %(right) CATALOG %(left)
  31.  
  32. all: AltKeyQ AltKeyQ.h empty.ct catalogs/deutsch/AltKeyQ.catalog
  33.  
  34. clean:
  35.     delete AltKeyQ.o AltKeyQ.h empty.ct catalogs/deutsch/AltKeyQ.catalog
  36.